home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / ras_api / rastest.dpr < prev    next >
Encoding:
Text File  |  1995-12-22  |  179 b   |  13 lines

  1. program Rastest;
  2.  
  3. uses
  4.   Forms,
  5.   Rasform in 'RASFORM.PAS' {RASConnect};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.CreateForm(TRASConnect, RASConnect);
  11.   Application.Run;
  12. end.
  13.